Geometry in d3.js
Issues:
Issues:
Issues:
Issues:
Want to try? Use Gephi
Alt: GraphVis
Pie chart \( \rightarrow \) Donut \( \rightarrow \) Sunburst
Issues:
Issues:
Voronoi-tesselation treemaps
Good for large data:
Patterns in huge data
Widely used by McKinsey & Company
Bar chart evolution
Good for smoothing, confidence intervals
Few geoms: line/area, column/bar, scatter/bubble, pie
But, hopefully, it will be developed
function drawChart() {
var data = google.visualization.arrayToDataTable([['Age','Weight'],[8,12],[4,5.5],[11,14],[4,5],[3,3.5],[6.5,7]]);
var options = {
title: 'Age vs. Weight comparison',
hAxis: {title: 'Age', minValue: 0, maxValue: 15},
vAxis: {title: 'Weight', minValue: 0, maxValue: 15}
};
var chart = new google.visualization.ScatterChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
$('#container').highcharts('StockChart', {
title : {
text : 'AAPL Stock Price'
},
series : [{
name : 'AAPL',
data : data,
tooltip: {
valueDecimals: 2
}
}]
});